home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / pod / perlintern.pod < prev    next >
Text File  |  2006-04-25  |  20KB  |  842 lines

  1. =head1 NAME
  2.  
  3. perlintern - autogenerated documentation of purely B<internal>
  4.          Perl functions
  5.  
  6. =head1 DESCRIPTION
  7.  
  8. This file is the autogenerated documentation of functions in the
  9. Perl interpreter that are documented using Perl's internal documentation
  10. format but are not marked as part of the Perl API. In other words,
  11. B<they are not for use in extensions>!
  12.  
  13.  
  14. =head1 CV reference counts and CvOUTSIDE
  15.  
  16. =over 8
  17.  
  18. =item CvWEAKOUTSIDE
  19.  
  20. Each CV has a pointer, C<CvOUTSIDE()>, to its lexically enclosing
  21. CV (if any). Because pointers to anonymous sub prototypes are
  22. stored in C<&> pad slots, it is a possible to get a circular reference,
  23. with the parent pointing to the child and vice-versa. To avoid the
  24. ensuing memory leak, we do not increment the reference count of the CV
  25. pointed to by C<CvOUTSIDE> in the I<one specific instance> that the parent
  26. has a C<&> pad slot pointing back to us. In this case, we set the
  27. C<CvWEAKOUTSIDE> flag in the child. This allows us to determine under what
  28. circumstances we should decrement the refcount of the parent when freeing
  29. the child.
  30.  
  31. There is a further complication with non-closure anonymous subs (ie those
  32. that do not refer to any lexicals outside that sub). In this case, the
  33. anonymous prototype is shared rather than being cloned. This has the
  34. consequence that the parent may be freed while there are still active
  35. children, eg
  36.  
  37.     BEGIN { $a = sub { eval '$x' } }
  38.  
  39. In this case, the BEGIN is freed immediately after execution since there
  40. are no active references to it: the anon sub prototype has
  41. C<CvWEAKOUTSIDE> set since it's not a closure, and $a points to the same
  42. CV, so it doesn't contribute to BEGIN's refcount either.  When $a is
  43. executed, the C<eval '$x'> causes the chain of C<CvOUTSIDE>s to be followed,
  44. and the freed BEGIN is accessed.
  45.  
  46. To avoid this, whenever a CV and its associated pad is freed, any
  47. C<&> entries in the pad are explicitly removed from the pad, and if the
  48. refcount of the pointed-to anon sub is still positive, then that
  49. child's C<CvOUTSIDE> is set to point to its grandparent. This will only
  50. occur in the single specific case of a non-closure anon prototype
  51. having one or more active references (such as C<$a> above).
  52.  
  53. One other thing to consider is that a CV may be merely undefined
  54. rather than freed, eg C<undef &foo>. In this case, its refcount may
  55. not have reached zero, but we still delete its pad and its C<CvROOT> etc.
  56. Since various children may still have their C<CvOUTSIDE> pointing at this
  57. undefined CV, we keep its own C<CvOUTSIDE> for the time being, so that
  58. the chain of lexical scopes is unbroken. For example, the following
  59. should print 123:
  60.  
  61.     my $x = 123;
  62.     sub tmp { sub { eval '$x' } }
  63.     my $a = tmp();
  64.     undef &tmp;
  65.     print  $a->();
  66.  
  67.     bool    CvWEAKOUTSIDE(CV *cv)
  68.  
  69. =for hackers
  70. Found in file cv.h
  71.  
  72.  
  73. =back
  74.  
  75. =head1 Functions in file pad.h
  76.  
  77.  
  78. =over 8
  79.  
  80. =item CX_CURPAD_SAVE
  81.  
  82. Save the current pad in the given context block structure.
  83.  
  84.     void    CX_CURPAD_SAVE(struct context)
  85.  
  86. =for hackers
  87. Found in file pad.h
  88.  
  89. =item CX_CURPAD_SV
  90.  
  91. Access the SV at offset po in the saved current pad in the given
  92. context block structure (can be used as an lvalue).
  93.  
  94.     SV *    CX_CURPAD_SV(struct context, PADOFFSET po)
  95.  
  96. =for hackers
  97. Found in file pad.h
  98.  
  99. =item PAD_BASE_SV    
  100.  
  101. Get the value from slot C<po> in the base (DEPTH=1) pad of a padlist
  102.  
  103.     SV *    PAD_BASE_SV    (PADLIST padlist, PADOFFSET po)
  104.  
  105. =for hackers
  106. Found in file pad.h
  107.  
  108. =item PAD_CLONE_VARS
  109.  
  110. |CLONE_PARAMS* param
  111. Clone the state variables associated with running and compiling pads.
  112.  
  113.     void    PAD_CLONE_VARS(PerlInterpreter *proto_perl \)
  114.  
  115. =for hackers
  116. Found in file pad.h
  117.  
  118. =item PAD_COMPNAME_FLAGS
  119.  
  120. Return the flags for the current compiling pad name
  121. at offset C<po>. Assumes a valid slot entry.
  122.  
  123.     U32    PAD_COMPNAME_FLAGS(PADOFFSET po)
  124.  
  125. =for hackers
  126. Found in file pad.h
  127.  
  128. =item PAD_COMPNAME_GEN
  129.  
  130. The generation number of the name at offset C<po> in the current
  131. compiling pad (lvalue). Note that C<SvCUR> is hijacked for this purpose.
  132.  
  133.     STRLEN    PAD_COMPNAME_GEN(PADOFFSET po)
  134.  
  135. =for hackers
  136. Found in file pad.h
  137.  
  138. =item PAD_COMPNAME_OURSTASH
  139.  
  140. Return the stash associated with an C<our> variable.
  141. Assumes the slot entry is a valid C<our> lexical.
  142.  
  143.     HV *    PAD_COMPNAME_OURSTASH(PADOFFSET po)
  144.  
  145. =for hackers
  146. Found in file pad.h
  147.  
  148. =item PAD_COMPNAME_PV
  149.  
  150. Return the name of the current compiling pad name
  151. at offset C<po>. Assumes a valid slot entry.
  152.  
  153.     char *    PAD_COMPNAME_PV(PADOFFSET po)
  154.  
  155. =for hackers
  156. Found in file pad.h
  157.  
  158. =item PAD_COMPNAME_TYPE
  159.  
  160. Return the type (stash) of the current compiling pad name at offset
  161. C<po>. Must be a valid name. Returns null if not typed.
  162.  
  163.     HV *    PAD_COMPNAME_TYPE(PADOFFSET po)
  164.  
  165. =for hackers
  166. Found in file pad.h
  167.  
  168. =item PAD_DUP
  169.  
  170. Clone a padlist.
  171.  
  172.     void    PAD_DUP(PADLIST dstpad, PADLIST srcpad, CLONE_PARAMS* param)
  173.  
  174. =for hackers
  175. Found in file pad.h
  176.  
  177. =item PAD_RESTORE_LOCAL
  178.  
  179. Restore the old pad saved into the local variable opad by PAD_SAVE_LOCAL()
  180.  
  181.     void    PAD_RESTORE_LOCAL(PAD *opad)
  182.  
  183. =for hackers
  184. Found in file pad.h
  185.  
  186. =item PAD_SAVE_LOCAL
  187.  
  188. Save the current pad to the local variable opad, then make the
  189. current pad equal to npad
  190.  
  191.     void    PAD_SAVE_LOCAL(PAD *opad, PAD *npad)
  192.  
  193. =for hackers
  194. Found in file pad.h
  195.  
  196. =item PAD_SAVE_SETNULLPAD
  197.  
  198. Save the current pad then set it to null.
  199.  
  200.     void    PAD_SAVE_SETNULLPAD()
  201.  
  202. =for hackers
  203. Found in file pad.h
  204.  
  205. =item PAD_SETSV    
  206.  
  207. Set the slot at offset C<po> in the current pad to C<sv>
  208.  
  209.     SV *    PAD_SETSV    (PADOFFSET po, SV* sv)
  210.  
  211. =for hackers
  212. Found in file pad.h
  213.  
  214. =item PAD_SET_CUR    
  215.  
  216. Set the current pad to be pad C<n> in the padlist, saving
  217. the previous current pad.
  218.  
  219.     void    PAD_SET_CUR    (PADLIST padlist, I32 n)
  220.  
  221. =for hackers
  222. Found in file pad.h
  223.  
  224. =item PAD_SET_CUR_NOSAVE    
  225.  
  226. like PAD_SET_CUR, but without the save
  227.  
  228.     void    PAD_SET_CUR_NOSAVE    (PADLIST padlist, I32 n)
  229.  
  230. =for hackers
  231. Found in file pad.h
  232.  
  233. =item PAD_SV    
  234.  
  235. Get the value at offset C<po> in the current pad
  236.  
  237.     void    PAD_SV    (PADOFFSET po)
  238.  
  239. =for hackers
  240. Found in file pad.h
  241.  
  242. =item PAD_SVl    
  243.  
  244. Lightweight and lvalue version of C<PAD_SV>.
  245. Get or set the value at offset C<po> in the current pad.
  246. Unlike C<PAD_SV>, does not print diagnostics with -DX.
  247. For internal use only.
  248.  
  249.     SV *    PAD_SVl    (PADOFFSET po)
  250.  
  251. =for hackers
  252. Found in file pad.h
  253.  
  254. =item SAVECLEARSV    
  255.  
  256. Clear the pointed to pad value on scope exit. (ie the runtime action of 'my')
  257.  
  258.     void    SAVECLEARSV    (SV **svp)
  259.  
  260. =for hackers
  261. Found in file pad.h
  262.  
  263. =item SAVECOMPPAD
  264.  
  265. save PL_comppad and PL_curpad
  266.  
  267.  
  268.  
  269.  
  270.  
  271.     void    SAVECOMPPAD()
  272.  
  273. =for hackers
  274. Found in file pad.h
  275.  
  276. =item SAVEPADSV    
  277.  
  278. Save a pad slot (used to restore after an iteration)
  279.  
  280. XXX DAPM it would make more sense to make the arg a PADOFFSET
  281.     void    SAVEPADSV    (PADOFFSET po)
  282.  
  283. =for hackers
  284. Found in file pad.h
  285.  
  286.  
  287. =back
  288.  
  289. =head1 Functions in file pp_ctl.c
  290.  
  291.  
  292. =over 8
  293.  
  294. =item find_runcv
  295.  
  296. Locate the CV corresponding to the currently executing sub or eval.
  297. If db_seqp is non_null, skip CVs that are in the DB package and populate
  298. *db_seqp with the cop sequence number at the point that the DB:: code was
  299. entered. (allows debuggers to eval in the scope of the breakpoint rather
  300. than in in the scope of the debugger itself).
  301.  
  302.     CV*    find_runcv(U32 *db_seqp)
  303.  
  304. =for hackers
  305. Found in file pp_ctl.c
  306.  
  307.  
  308. =back
  309.  
  310. =head1 Global Variables
  311.  
  312. =over 8
  313.  
  314. =item PL_DBsingle
  315.  
  316. When Perl is run in debugging mode, with the B<-d> switch, this SV is a
  317. boolean which indicates whether subs are being single-stepped.
  318. Single-stepping is automatically turned on after every step.  This is the C
  319. variable which corresponds to Perl's $DB::single variable.  See
  320. C<PL_DBsub>.
  321.  
  322.     SV *    PL_DBsingle
  323.  
  324. =for hackers
  325. Found in file intrpvar.h
  326.  
  327. =item PL_DBsub
  328.  
  329. When Perl is run in debugging mode, with the B<-d> switch, this GV contains
  330. the SV which holds the name of the sub being debugged.  This is the C
  331. variable which corresponds to Perl's $DB::sub variable.  See
  332. C<PL_DBsingle>.
  333.  
  334.     GV *    PL_DBsub
  335.  
  336. =for hackers
  337. Found in file intrpvar.h
  338.  
  339. =item PL_DBtrace
  340.  
  341. Trace variable used when Perl is run in debugging mode, with the B<-d>
  342. switch.  This is the C variable which corresponds to Perl's $DB::trace
  343. variable.  See C<PL_DBsingle>.
  344.  
  345.     SV *    PL_DBtrace
  346.  
  347. =for hackers
  348. Found in file intrpvar.h
  349.  
  350. =item PL_dowarn
  351.  
  352. The C variable which corresponds to Perl's $^W warning variable.
  353.  
  354.     bool    PL_dowarn
  355.  
  356. =for hackers
  357. Found in file intrpvar.h
  358.  
  359. =item PL_last_in_gv
  360.  
  361. The GV which was last used for a filehandle input operation. (C<< <FH> >>)
  362.  
  363.     GV*    PL_last_in_gv
  364.  
  365. =for hackers
  366. Found in file thrdvar.h
  367.  
  368. =item PL_ofs_sv
  369.  
  370. The output field separator - C<$,> in Perl space.
  371.  
  372.     SV*    PL_ofs_sv
  373.  
  374. =for hackers
  375. Found in file thrdvar.h
  376.  
  377. =item PL_rs
  378.  
  379. The input record separator - C<$/> in Perl space.
  380.  
  381.     SV*    PL_rs
  382.  
  383. =for hackers
  384. Found in file thrdvar.h
  385.  
  386.  
  387. =back
  388.  
  389. =head1 GV Functions
  390.  
  391. =over 8
  392.  
  393. =item is_gv_magical
  394.  
  395. Returns C<TRUE> if given the name of a magical GV.
  396.  
  397. Currently only useful internally when determining if a GV should be
  398. created even in rvalue contexts.
  399.  
  400. C<flags> is not used at present but available for future extension to
  401. allow selecting particular classes of magical variable.
  402.  
  403. Currently assumes that C<name> is NUL terminated (as well as len being valid).
  404. This assumption is met by all callers within the perl core, which all pass
  405. pointers returned by SvPV.
  406.  
  407.     bool    is_gv_magical(char *name, STRLEN len, U32 flags)
  408.  
  409. =for hackers
  410. Found in file gv.c
  411.  
  412.  
  413. =back
  414.  
  415. =head1 IO Functions
  416.  
  417. =over 8
  418.  
  419. =item start_glob
  420.  
  421. Function called by C<do_readline> to spawn a glob (or do the glob inside
  422. perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
  423. this glob starter is only used by miniperl during the build process.
  424. Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
  425.  
  426.     PerlIO*    start_glob(SV* pattern, IO *io)
  427.  
  428. =for hackers
  429. Found in file doio.c
  430.  
  431.  
  432. =back
  433.  
  434. =head1 Pad Data Structures
  435.  
  436. =over 8
  437.  
  438. =item CvPADLIST
  439.  
  440. CV's can have CvPADLIST(cv) set to point to an AV.
  441.  
  442. For these purposes "forms" are a kind-of CV, eval""s are too (except they're
  443. not callable at will and are always thrown away after the eval"" is done
  444. executing).
  445.  
  446. XSUBs don't have CvPADLIST set - dXSTARG fetches values from PL_curpad,
  447. but that is really the callers pad (a slot of which is allocated by
  448. every entersub).
  449.  
  450. The CvPADLIST AV has does not have AvREAL set, so REFCNT of component items
  451. is managed "manual" (mostly in pad.c) rather than normal av.c rules.
  452. The items in the AV are not SVs as for a normal AV, but other AVs:
  453.  
  454. 0'th Entry of the CvPADLIST is an AV which represents the "names" or rather
  455. the "static type information" for lexicals.
  456.  
  457. The CvDEPTH'th entry of CvPADLIST AV is an AV which is the stack frame at that
  458. depth of recursion into the CV.
  459. The 0'th slot of a frame AV is an AV which is @_.
  460. other entries are storage for variables and op targets.
  461.  
  462. During compilation:
  463. C<PL_comppad_name> is set to the names AV.
  464. C<PL_comppad> is set to the frame AV for the frame CvDEPTH == 1.
  465. C<PL_curpad> is set to the body of the frame AV (i.e. AvARRAY(PL_comppad)).
  466.  
  467. During execution, C<PL_comppad> and C<PL_curpad> refer to the live
  468. frame of the currently executing sub.
  469.  
  470. Iterating over the names AV iterates over all possible pad
  471. items. Pad slots that are SVs_PADTMP (targets/GVs/constants) end up having
  472. &PL_sv_undef "names" (see pad_alloc()).
  473.  
  474. Only my/our variable (SVs_PADMY/SVs_PADOUR) slots get valid names.
  475. The rest are op targets/GVs/constants which are statically allocated
  476. or resolved at compile time.  These don't have names by which they
  477. can be looked up from Perl code at run time through eval"" like
  478. my/our variables can be.  Since they can't be looked up by "name"
  479. but only by their index allocated at compile time (which is usually
  480. in PL_op->op_targ), wasting a name SV for them doesn't make sense.
  481.  
  482. The SVs in the names AV have their PV being the name of the variable.
  483. NV+1..IV inclusive is a range of cop_seq numbers for which the name is
  484. valid.  For typed lexicals name SV is SVt_PVMG and SvSTASH points at the
  485. type.  For C<our> lexicals, the type is SVt_PVGV, and GvSTASH points at the
  486. stash of the associated global (so that duplicate C<our> delarations in the
  487. same package can be detected).  SvCUR is sometimes hijacked to
  488. store the generation number during compilation.
  489.  
  490. If SvFAKE is set on the name SV then slot in the frame AVs are
  491. a REFCNT'ed references to a lexical from "outside". In this case,
  492. the name SV does not have a cop_seq range, since it is in scope
  493. throughout.
  494.  
  495. If the 'name' is '&' the corresponding entry in frame AV
  496. is a CV representing a possible closure.
  497. (SvFAKE and name of '&' is not a meaningful combination currently but could
  498. become so if C<my sub foo {}> is implemented.)
  499.  
  500. The flag SVf_PADSTALE is cleared on lexicals each time the my() is executed,
  501. and set on scope exit. This allows the 'Variable $x is not available' warning
  502. to be generated in evals, such as 
  503.  
  504.     { my $x = 1; sub f { eval '$x'} } f();
  505.  
  506.     AV *    CvPADLIST(CV *cv)
  507.  
  508. =for hackers
  509. Found in file pad.c
  510.  
  511. =item cv_clone
  512.  
  513. Clone a CV: make a new CV which points to the same code etc, but which
  514. has a newly-created pad built by copying the prototype pad and capturing
  515. any outer lexicals.
  516.  
  517.     CV*    cv_clone(CV* proto)
  518.  
  519. =for hackers
  520. Found in file pad.c
  521.  
  522. =item cv_dump
  523.  
  524. dump the contents of a CV
  525.  
  526.     void    cv_dump(CV *cv, char *title)
  527.  
  528. =for hackers
  529. Found in file pad.c
  530.  
  531. =item do_dump_pad
  532.  
  533. Dump the contents of a padlist
  534.  
  535.     void    do_dump_pad(I32 level, PerlIO *file, PADLIST *padlist, int full)
  536.  
  537. =for hackers
  538. Found in file pad.c
  539.  
  540. =item intro_my
  541.  
  542. "Introduce" my variables to visible status.
  543.  
  544.     U32    intro_my()
  545.  
  546. =for hackers
  547. Found in file pad.c
  548.  
  549. =item pad_add_anon
  550.  
  551. Add an anon code entry to the current compiling pad
  552.  
  553.     PADOFFSET    pad_add_anon(SV* sv, OPCODE op_type)
  554.  
  555. =for hackers
  556. Found in file pad.c
  557.  
  558. =item pad_add_name
  559.  
  560. Create a new name in the current pad at the specified offset.
  561. If C<typestash> is valid, the name is for a typed lexical; set the
  562. name's stash to that value.
  563. If C<ourstash> is valid, it's an our lexical, set the name's
  564. GvSTASH to that value
  565.  
  566. Also, if the name is @.. or %.., create a new array or hash for that slot
  567.  
  568. If fake, it means we're cloning an existing entry
  569.  
  570.     PADOFFSET    pad_add_name(char *name, HV* typestash, HV* ourstash, bool clone)
  571.  
  572. =for hackers
  573. Found in file pad.c
  574.  
  575. =item pad_alloc
  576.  
  577. Allocate a new my or tmp pad entry. For a my, simply push a null SV onto
  578. the end of PL_comppad, but for a tmp, scan the pad from PL_padix upwards
  579. for a slot which has no name and and no active value.
  580.  
  581.     PADOFFSET    pad_alloc(I32 optype, U32 tmptype)
  582.  
  583. =for hackers
  584. Found in file pad.c
  585.  
  586. =item pad_block_start
  587.  
  588. Update the pad compilation state variables on entry to a new block
  589.  
  590.     void    pad_block_start(int full)
  591.  
  592. =for hackers
  593. Found in file pad.c
  594.  
  595. =item pad_check_dup
  596.  
  597. Check for duplicate declarations: report any of:
  598.      * a my in the current scope with the same name;
  599.      * an our (anywhere in the pad) with the same name and the same stash
  600.        as C<ourstash>
  601. C<is_our> indicates that the name to check is an 'our' declaration
  602.  
  603.     void    pad_check_dup(char* name, bool is_our, HV* ourstash)
  604.  
  605. =for hackers
  606. Found in file pad.c
  607.  
  608. =item pad_findlex
  609.  
  610. Find a named lexical anywhere in a chain of nested pads. Add fake entries
  611. in the inner pads if it's found in an outer one. innercv is the CV *inside*
  612. the chain of outer CVs to be searched. If newoff is non-null, this is a
  613. run-time cloning: don't add fake entries, just find the lexical and add a
  614. ref to it at newoff in the current pad.
  615.  
  616.     PADOFFSET    pad_findlex(char* name, PADOFFSET newoff, CV* innercv)
  617.  
  618. =for hackers
  619. Found in file pad.c
  620.  
  621. =item pad_findmy
  622.  
  623. Given a lexical name, try to find its offset, first in the current pad,
  624. or failing that, in the pads of any lexically enclosing subs (including
  625. the complications introduced by eval). If the name is found in an outer pad,
  626. then a fake entry is added to the current pad.
  627. Returns the offset in the current pad, or NOT_IN_PAD on failure.
  628.  
  629.     PADOFFSET    pad_findmy(char* name)
  630.  
  631. =for hackers
  632. Found in file pad.c
  633.  
  634. =item pad_fixup_inner_anons
  635.  
  636. For any anon CVs in the pad, change CvOUTSIDE of that CV from
  637. old_cv to new_cv if necessary. Needed when a newly-compiled CV has to be
  638. moved to a pre-existing CV struct.
  639.  
  640.     void    pad_fixup_inner_anons(PADLIST *padlist, CV *old_cv, CV *new_cv)
  641.  
  642. =for hackers
  643. Found in file pad.c
  644.  
  645. =item pad_free
  646.  
  647. Free the SV at offet po in the current pad.
  648.  
  649.     void    pad_free(PADOFFSET po)
  650.  
  651. =for hackers
  652. Found in file pad.c
  653.  
  654. =item pad_leavemy
  655.  
  656. Cleanup at end of scope during compilation: set the max seq number for
  657. lexicals in this scope and warn of any lexicals that never got introduced.
  658.  
  659.     void    pad_leavemy()
  660.  
  661. =for hackers
  662. Found in file pad.c
  663.  
  664. =item pad_new
  665.  
  666. Create a new compiling padlist, saving and updating the various global
  667. vars at the same time as creating the pad itself. The following flags
  668. can be OR'ed together:
  669.  
  670.     padnew_CLONE    this pad is for a cloned CV
  671.     padnew_SAVE        save old globals
  672.     padnew_SAVESUB    also save extra stuff for start of sub
  673.  
  674.     PADLIST*    pad_new(int flags)
  675.  
  676. =for hackers
  677. Found in file pad.c
  678.  
  679. =item pad_push
  680.  
  681. Push a new pad frame onto the padlist, unless there's already a pad at
  682. this depth, in which case don't bother creating a new one.
  683. If has_args is true, give the new pad an @_ in slot zero.
  684.  
  685.     void    pad_push(PADLIST *padlist, int depth, int has_args)
  686.  
  687. =for hackers
  688. Found in file pad.c
  689.  
  690. =item pad_reset
  691.  
  692. Mark all the current temporaries for reuse
  693.  
  694.     void    pad_reset()
  695.  
  696. =for hackers
  697. Found in file pad.c
  698.  
  699. =item pad_setsv
  700.  
  701. Set the entry at offset po in the current pad to sv.
  702. Use the macro PAD_SETSV() rather than calling this function directly.
  703.  
  704.     void    pad_setsv(PADOFFSET po, SV* sv)
  705.  
  706. =for hackers
  707. Found in file pad.c
  708.  
  709. =item pad_swipe
  710.  
  711. Abandon the tmp in the current pad at offset po and replace with a
  712. new one.
  713.  
  714.     void    pad_swipe(PADOFFSET po, bool refadjust)
  715.  
  716. =for hackers
  717. Found in file pad.c
  718.  
  719. =item pad_tidy
  720.  
  721. Tidy up a pad after we've finished compiling it:
  722.     * remove most stuff from the pads of anonsub prototypes;
  723.     * give it a @_;
  724.     * mark tmps as such.
  725.  
  726.     void    pad_tidy(padtidy_type type)
  727.  
  728. =for hackers
  729. Found in file pad.c
  730.  
  731. =item pad_undef
  732.  
  733. Free the padlist associated with a CV.
  734. If parts of it happen to be current, we null the relevant
  735. PL_*pad* global vars so that we don't have any dangling references left.
  736. We also repoint the CvOUTSIDE of any about-to-be-orphaned
  737. inner subs to the outer of this cv.
  738.  
  739. (This function should really be called pad_free, but the name was already
  740. taken)
  741.  
  742.     void    pad_undef(CV* cv)
  743.  
  744. =for hackers
  745. Found in file pad.c
  746.  
  747.  
  748. =back
  749.  
  750. =head1 Stack Manipulation Macros
  751.  
  752. =over 8
  753.  
  754. =item djSP
  755.  
  756. Declare Just C<SP>. This is actually identical to C<dSP>, and declares
  757. a local copy of perl's stack pointer, available via the C<SP> macro.
  758. See C<SP>.  (Available for backward source code compatibility with the
  759. old (Perl 5.005) thread model.)
  760.  
  761.         djSP;
  762.  
  763. =for hackers
  764. Found in file pp.h
  765.  
  766. =item LVRET
  767.  
  768. True if this op will be the return value of an lvalue subroutine
  769.  
  770. =for hackers
  771. Found in file pp.h
  772.  
  773.  
  774. =back
  775.  
  776. =head1 SV Manipulation Functions
  777.  
  778. =over 8
  779.  
  780. =item report_uninit
  781.  
  782. Print appropriate "Use of uninitialized variable" warning
  783.  
  784.     void    report_uninit()
  785.  
  786. =for hackers
  787. Found in file sv.c
  788.  
  789. =item sv_add_arena
  790.  
  791. Given a chunk of memory, link it to the head of the list of arenas,
  792. and split it into a list of free SVs.
  793.  
  794.     void    sv_add_arena(char* ptr, U32 size, U32 flags)
  795.  
  796. =for hackers
  797. Found in file sv.c
  798.  
  799. =item sv_clean_all
  800.  
  801. Decrement the refcnt of each remaining SV, possibly triggering a
  802. cleanup. This function may have to be called multiple times to free
  803. SVs which are in complex self-referential hierarchies.
  804.  
  805.     I32    sv_clean_all()
  806.  
  807. =for hackers
  808. Found in file sv.c
  809.  
  810. =item sv_clean_objs
  811.  
  812. Attempt to destroy all objects not yet freed
  813.  
  814.     void    sv_clean_objs()
  815.  
  816. =for hackers
  817. Found in file sv.c
  818.  
  819. =item sv_free_arenas
  820.  
  821. Deallocate the memory used by all arenas. Note that all the individual SV
  822. heads and bodies within the arenas must already have been freed.
  823.  
  824.     void    sv_free_arenas()
  825.  
  826. =for hackers
  827. Found in file sv.c
  828.  
  829.  
  830. =back
  831.  
  832. =head1 AUTHORS
  833.  
  834. The autodocumentation system was originally added to the Perl core by
  835. Benjamin Stuhl. Documentation is by whoever was kind enough to
  836. document their functions.
  837.  
  838. =head1 SEE ALSO
  839.  
  840. perlguts(1), perlapi(1)
  841.  
  842.